From 29b2b5959491946672e4cbb6126ef93c1281cd34 Mon Sep 17 00:00:00 2001 From: Jesse Gilles Date: Thu, 30 Apr 2015 13:13:10 -0500 Subject: rename to libmts-io --- .gitignore | 4 ++-- Makefile | 18 +++++++++--------- include/mts/MTS_IO_CE910Radio.h | 8 ++++---- include/mts/MTS_IO_CdmaRadio.h | 8 ++++---- include/mts/MTS_IO_CellularRadio.h | 8 ++++---- include/mts/MTS_IO_CellularRadioFactory.h | 8 ++++---- include/mts/MTS_IO_Connection.h | 8 ++++---- include/mts/MTS_IO_DE910Radio.h | 8 ++++---- include/mts/MTS_IO_GE910Radio.h | 8 ++++---- include/mts/MTS_IO_HE910DRadio.h | 8 ++++---- include/mts/MTS_IO_HE910EUDRadio.h | 8 ++++---- include/mts/MTS_IO_HE910Radio.h | 8 ++++---- include/mts/MTS_IO_LE910EUGRadio.h | 8 ++++---- include/mts/MTS_IO_LE910NAGRadio.h | 8 ++++---- include/mts/MTS_IO_LE910Radio.h | 8 ++++---- include/mts/MTS_IO_LE910SVGRadio.h | 8 ++++---- include/mts/MTS_IO_LockFile.h | 8 ++++---- include/mts/MTS_IO_MccMncTable.h | 8 ++++---- include/mts/MTS_IO_SerialConnection.h | 8 ++++---- src/MTS_IO_CE910Radio.cpp | 8 ++++---- src/MTS_IO_CdmaRadio.cpp | 8 ++++---- src/MTS_IO_CellularRadio.cpp | 8 ++++---- src/MTS_IO_CellularRadioFactory.cpp | 8 ++++---- src/MTS_IO_Connection.cpp | 8 ++++---- src/MTS_IO_DE910Radio.cpp | 8 ++++---- src/MTS_IO_GE910Radio.cpp | 8 ++++---- src/MTS_IO_HE910DRadio.cpp | 8 ++++---- src/MTS_IO_HE910EUDRadio.cpp | 8 ++++---- src/MTS_IO_HE910Radio.cpp | 8 ++++---- src/MTS_IO_LE910EUGRadio.cpp | 8 ++++---- src/MTS_IO_LE910NAGRadio.cpp | 8 ++++---- src/MTS_IO_LE910Radio.cpp | 8 ++++---- src/MTS_IO_LE910SVGRadio.cpp | 8 ++++---- src/MTS_IO_LockFile.cpp | 8 ++++---- src/MTS_IO_MccMncTable.cpp | 8 ++++---- src/MTS_IO_SerialConnection.cpp | 8 ++++---- test/CMakeLists.txt | 2 +- 37 files changed, 148 insertions(+), 148 deletions(-) diff --git a/.gitignore b/.gitignore index 1369c23..5296eff 100644 --- a/.gitignore +++ b/.gitignore @@ -7,5 +7,5 @@ doc/doxygen.log *.xml *.o *.d -libmts_io.a -libmts_io.so* +libmts-io.a +libmts-io.so* diff --git a/Makefile b/Makefile index a52c60b..fe019f8 100644 --- a/Makefile +++ b/Makefile @@ -41,17 +41,17 @@ MTS_IO_LockFile.d \ MTS_IO_MccMncTable.d \ MTS_IO_SerialConnection.d -all: libmts_io.a libmts_io.so.0 +all: libmts-io.a libmts-io.so.0 -libmts_io.a: $(OBJS) +libmts-io.a: $(OBJS) @echo 'Building target: $@' - $(AR) -r libmts_io.a $(OBJS) + $(AR) -r libmts-io.a $(OBJS) @echo 'Finished building target: $@' @echo ' ' -libmts_io.so.0: $(OBJS) +libmts-io.so.0: $(OBJS) @echo 'Building target: $@' - $(CXX) -shared -Wl,-soname,$@ -o libmts_io.so.$(VERSION) $(OBJS) + $(CXX) -shared -Wl,-soname,$@ -o libmts-io.so.$(VERSION) $(OBJS) @echo 'Finished building target: $@' @echo ' ' @@ -64,13 +64,13 @@ libmts_io.so.0: $(OBJS) install: mkdir -p $(DESTDIR)$(libdir) mkdir -p $(DESTDIR)$(includedir)/mts - install -m 0644 libmts_io.a libmts_io.so.$(VERSION) $(DESTDIR)$(libdir)/ - ln -sf libmts_io.so.$(VERSION) $(DESTDIR)$(libdir)/libmts_io.so.0 - ln -sf libmts_io.so.0 $(DESTDIR)$(libdir)/libmts_io.so + install -m 0644 libmts-io.a libmts-io.so.$(VERSION) $(DESTDIR)$(libdir)/ + ln -sf libmts-io.so.$(VERSION) $(DESTDIR)$(libdir)/libmts-io.so.0 + ln -sf libmts-io.so.0 $(DESTDIR)$(libdir)/libmts-io.so install -m 0644 include/mts/* $(DESTDIR)$(includedir)/mts/ clean: - -$(RM) $(OBJS) $(CPP_DEPS) libmts_io.a libmts_io.so* + -$(RM) $(OBJS) $(CPP_DEPS) libmts-io.a libmts-io.so* -@echo ' ' .PHONY: all clean dependents install diff --git a/include/mts/MTS_IO_CE910Radio.h b/include/mts/MTS_IO_CE910Radio.h index 9719c7a..47444d9 100644 --- a/include/mts/MTS_IO_CE910Radio.h +++ b/include/mts/MTS_IO_CE910Radio.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/include/mts/MTS_IO_CdmaRadio.h b/include/mts/MTS_IO_CdmaRadio.h index 146034b..448cdc7 100644 --- a/include/mts/MTS_IO_CdmaRadio.h +++ b/include/mts/MTS_IO_CdmaRadio.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/include/mts/MTS_IO_CellularRadio.h b/include/mts/MTS_IO_CellularRadio.h index b253c80..07daf19 100644 --- a/include/mts/MTS_IO_CellularRadio.h +++ b/include/mts/MTS_IO_CellularRadio.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/include/mts/MTS_IO_CellularRadioFactory.h b/include/mts/MTS_IO_CellularRadioFactory.h index 5fa44d7..d3616be 100644 --- a/include/mts/MTS_IO_CellularRadioFactory.h +++ b/include/mts/MTS_IO_CellularRadioFactory.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/include/mts/MTS_IO_Connection.h b/include/mts/MTS_IO_Connection.h index bd4b32f..f90b6c9 100644 --- a/include/mts/MTS_IO_Connection.h +++ b/include/mts/MTS_IO_Connection.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/include/mts/MTS_IO_DE910Radio.h b/include/mts/MTS_IO_DE910Radio.h index 40dc132..e9e8287 100644 --- a/include/mts/MTS_IO_DE910Radio.h +++ b/include/mts/MTS_IO_DE910Radio.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/include/mts/MTS_IO_GE910Radio.h b/include/mts/MTS_IO_GE910Radio.h index 079765d..403e623 100644 --- a/include/mts/MTS_IO_GE910Radio.h +++ b/include/mts/MTS_IO_GE910Radio.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/include/mts/MTS_IO_HE910DRadio.h b/include/mts/MTS_IO_HE910DRadio.h index 2fd648e..6ab6bc4 100644 --- a/include/mts/MTS_IO_HE910DRadio.h +++ b/include/mts/MTS_IO_HE910DRadio.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/include/mts/MTS_IO_HE910EUDRadio.h b/include/mts/MTS_IO_HE910EUDRadio.h index 96353f2..3ade27f 100644 --- a/include/mts/MTS_IO_HE910EUDRadio.h +++ b/include/mts/MTS_IO_HE910EUDRadio.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/include/mts/MTS_IO_HE910Radio.h b/include/mts/MTS_IO_HE910Radio.h index ee8e1e7..8c1aaa1 100644 --- a/include/mts/MTS_IO_HE910Radio.h +++ b/include/mts/MTS_IO_HE910Radio.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/include/mts/MTS_IO_LE910EUGRadio.h b/include/mts/MTS_IO_LE910EUGRadio.h index d0607e2..6dc91f5 100644 --- a/include/mts/MTS_IO_LE910EUGRadio.h +++ b/include/mts/MTS_IO_LE910EUGRadio.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/include/mts/MTS_IO_LE910NAGRadio.h b/include/mts/MTS_IO_LE910NAGRadio.h index a05a311..dfd35a1 100644 --- a/include/mts/MTS_IO_LE910NAGRadio.h +++ b/include/mts/MTS_IO_LE910NAGRadio.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/include/mts/MTS_IO_LE910Radio.h b/include/mts/MTS_IO_LE910Radio.h index e2f4c12..5391304 100644 --- a/include/mts/MTS_IO_LE910Radio.h +++ b/include/mts/MTS_IO_LE910Radio.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/include/mts/MTS_IO_LE910SVGRadio.h b/include/mts/MTS_IO_LE910SVGRadio.h index d92f877..7804f57 100644 --- a/include/mts/MTS_IO_LE910SVGRadio.h +++ b/include/mts/MTS_IO_LE910SVGRadio.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/include/mts/MTS_IO_LockFile.h b/include/mts/MTS_IO_LockFile.h index dcfb9ae..730cf3c 100644 --- a/include/mts/MTS_IO_LockFile.h +++ b/include/mts/MTS_IO_LockFile.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/include/mts/MTS_IO_MccMncTable.h b/include/mts/MTS_IO_MccMncTable.h index 7772258..7999678 100644 --- a/include/mts/MTS_IO_MccMncTable.h +++ b/include/mts/MTS_IO_MccMncTable.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/include/mts/MTS_IO_SerialConnection.h b/include/mts/MTS_IO_SerialConnection.h index b4bb61f..a4ca011 100644 --- a/include/mts/MTS_IO_SerialConnection.h +++ b/include/mts/MTS_IO_SerialConnection.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_CE910Radio.cpp b/src/MTS_IO_CE910Radio.cpp index b60c648..bb6e97a 100644 --- a/src/MTS_IO_CE910Radio.cpp +++ b/src/MTS_IO_CE910Radio.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_CdmaRadio.cpp b/src/MTS_IO_CdmaRadio.cpp index 66ce820..72923a7 100644 --- a/src/MTS_IO_CdmaRadio.cpp +++ b/src/MTS_IO_CdmaRadio.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_CellularRadio.cpp b/src/MTS_IO_CellularRadio.cpp index adea939..02bbd33 100644 --- a/src/MTS_IO_CellularRadio.cpp +++ b/src/MTS_IO_CellularRadio.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_CellularRadioFactory.cpp b/src/MTS_IO_CellularRadioFactory.cpp index 3a5cb74..5928467 100644 --- a/src/MTS_IO_CellularRadioFactory.cpp +++ b/src/MTS_IO_CellularRadioFactory.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_Connection.cpp b/src/MTS_IO_Connection.cpp index 36a91ed..40e460e 100644 --- a/src/MTS_IO_Connection.cpp +++ b/src/MTS_IO_Connection.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_DE910Radio.cpp b/src/MTS_IO_DE910Radio.cpp index 766d7d1..f11e8c5 100644 --- a/src/MTS_IO_DE910Radio.cpp +++ b/src/MTS_IO_DE910Radio.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_GE910Radio.cpp b/src/MTS_IO_GE910Radio.cpp index 013837b..7e35323 100644 --- a/src/MTS_IO_GE910Radio.cpp +++ b/src/MTS_IO_GE910Radio.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_HE910DRadio.cpp b/src/MTS_IO_HE910DRadio.cpp index b159a9c..c2ca05e 100644 --- a/src/MTS_IO_HE910DRadio.cpp +++ b/src/MTS_IO_HE910DRadio.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_HE910EUDRadio.cpp b/src/MTS_IO_HE910EUDRadio.cpp index 4ae7e19..ca47b4f 100644 --- a/src/MTS_IO_HE910EUDRadio.cpp +++ b/src/MTS_IO_HE910EUDRadio.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_HE910Radio.cpp b/src/MTS_IO_HE910Radio.cpp index 3a7851a..f548b4e 100644 --- a/src/MTS_IO_HE910Radio.cpp +++ b/src/MTS_IO_HE910Radio.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_LE910EUGRadio.cpp b/src/MTS_IO_LE910EUGRadio.cpp index c3e54c3..9e970b3 100644 --- a/src/MTS_IO_LE910EUGRadio.cpp +++ b/src/MTS_IO_LE910EUGRadio.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_LE910NAGRadio.cpp b/src/MTS_IO_LE910NAGRadio.cpp index c2f8bf5..03ac9be 100644 --- a/src/MTS_IO_LE910NAGRadio.cpp +++ b/src/MTS_IO_LE910NAGRadio.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_LE910Radio.cpp b/src/MTS_IO_LE910Radio.cpp index cbff249..66a074e 100644 --- a/src/MTS_IO_LE910Radio.cpp +++ b/src/MTS_IO_LE910Radio.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_LE910SVGRadio.cpp b/src/MTS_IO_LE910SVGRadio.cpp index ee9b3f8..692350d 100644 --- a/src/MTS_IO_LE910SVGRadio.cpp +++ b/src/MTS_IO_LE910SVGRadio.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_LockFile.cpp b/src/MTS_IO_LockFile.cpp index a4879de..b74ba73 100644 --- a/src/MTS_IO_LockFile.cpp +++ b/src/MTS_IO_LockFile.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_MccMncTable.cpp b/src/MTS_IO_MccMncTable.cpp index 8ac3f62..e375213 100644 --- a/src/MTS_IO_MccMncTable.cpp +++ b/src/MTS_IO_MccMncTable.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/src/MTS_IO_SerialConnection.cpp b/src/MTS_IO_SerialConnection.cpp index 8f0b8e3..4a7923b 100644 --- a/src/MTS_IO_SerialConnection.cpp +++ b/src/MTS_IO_SerialConnection.cpp @@ -1,20 +1,20 @@ /* * Copyright (C) 2015 by Multi-Tech Systems * - * This file is part of libmts_io. + * This file is part of libmts-io. * - * libmts_io is free software: you can redistribute it and/or modify + * libmts-io is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * - * libmts_io is distributed in the hope that it will be useful, + * libmts-io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with libmts_io. If not, see . + * along with libmts-io. If not, see . * */ diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 64428e9..8cfb660 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -6,4 +6,4 @@ link_directories (..) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x -DCPPUNIT_MAIN=main") add_executable (TestRunnerClient TestRunnerClient.cpp ) -target_link_libraries (TestRunnerClient cppunit mts mts_io ssl rt pthread) +target_link_libraries (TestRunnerClient cppunit mts mts-io ssl rt pthread) -- cgit v1.2.3