- Timestamp:
- 11/08/01 11:29:20 (23 years ago)
- Location:
- trunk/MagicSoft/Control/SubsystemIO
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Control/SubsystemIO/IONotifier.cxx
r1053 r1054 21 21 22 22 //g++ -c IONotifier.C `sigc-config --cflags` 23 #include "IONotifier. H"23 #include "IONotifier.hxx" 24 24 //for printf 25 25 #include <stdio.h> -
trunk/MagicSoft/Control/SubsystemIO/Makefile
r1041 r1054 11 11 all: mainForSubsystem mainForTCPListener mainForTCPSender mainForPeriodicAction mainForPeriodicSignal 12 12 links: 13 ln -s Subsystem.plain. H Subsystem.H14 ln -s Subsystem.plain. C Subsystem.C15 ln -s TCPListener.select. H TCPListener.H16 ln -s TCPListener.select. C TCPListener.C13 ln -s Subsystem.plain.hxx Subsystem.hxx 14 ln -s Subsystem.plain.cxx Subsystem.cxx 15 ln -s TCPListener.select.hxx TCPListener.hxx 16 ln -s TCPListener.select.cxx TCPListener.cxx 17 17 mainForSubsystem: mainForSubsystem.o $(OBJS) 18 18 $(CC) -o mainForSubsystem mainForSubsystem.o $(OBJS) $(LIBS) … … 26 26 $(CC) -o mainForPeriodicSignal mainForPeriodicSignal.o $(OBJS) $(LIBS) 27 27 28 .SUFFIX: .o . C29 . C.o:30 $(CC) $(CFLAGS) -c $*. C-o $*.o28 .SUFFIX: .o .cxx 29 .cxx.o: 30 $(CC) $(CFLAGS) -c $*.cxx -o $*.o 31 31 .c.o: 32 32 $(CC) $(CFLAGS) -c $*.c -o $*.o -
trunk/MagicSoft/Control/SubsystemIO/PeriodicAction.cxx
r1053 r1054 19 19 */ 20 20 21 #include "PeriodicAction. H"21 #include "PeriodicAction.hxx" 22 22 //for signals 23 23 #include <sigc++/signal_system.h> -
trunk/MagicSoft/Control/SubsystemIO/PeriodicAction.hxx
r1053 r1054 56 56 57 57 58 #include "PeriodicSignal. H"58 #include "PeriodicSignal.hxx" 59 59 //for signals, and Object 60 60 #include <sigc++/signal_system.h> -
trunk/MagicSoft/Control/SubsystemIO/PeriodicSignal.cxx
r1053 r1054 19 19 */ 20 20 21 #include "PeriodicSignal. H"21 #include "PeriodicSignal.hxx" 22 22 //for signals 23 23 #include <sigc++/signal_system.h> -
trunk/MagicSoft/Control/SubsystemIO/Subsystem.orig.cxx
r1053 r1054 20 20 21 21 //it is a good idea to encapsulate all the configuration file dependence in one a wrapper class SubFormatSubsystem, and derive from it 22 //#include "SubFormatSubsystem. C"23 #include "Subsystem. H"24 #include "PeriodicAction. H"25 #include "TCPListener. H"26 #include "TCPSender. H"27 #include "IONotifier. H"22 //#include "SubFormatSubsystem.hxx" 23 #include "Subsystem.hxx" 24 #include "PeriodicAction.hxx" 25 #include "TCPListener.hxx" 26 #include "TCPSender.hxx" 27 #include "IONotifier.hxx" 28 28 #include <string> 29 29 //for signals/slots (Callbacks in C++, see http://libsigc.sourceforge.net/) -
trunk/MagicSoft/Control/SubsystemIO/Subsystem.orig.hxx
r1053 r1054 2 2 #define SUBSYSTEM 3 3 4 #include "PeriodicAction. H"5 #include "TCPListener. H"6 #include "IONotifier. H"7 #include "PeriodicAction. H"8 #include "TCPSender. H"4 #include "PeriodicAction.hxx" 5 #include "TCPListener.hxx" 6 #include "IONotifier.hxx" 7 #include "PeriodicAction.hxx" 8 #include "TCPSender.hxx" 9 9 #define TIMESTAMP_LEN 12 10 10 //%02.2d:%02.2d:%02.2d:%03.3d -
trunk/MagicSoft/Control/SubsystemIO/Subsystem.plain.cxx
r1053 r1054 20 20 21 21 //it is a good idea to encapsulate all the configuration file dependence in one a wrapper class SubFormatSubsystem, and derive from it 22 //#include "SubFormatSubsystem. C"23 #include "Subsystem. H"24 #include "PeriodicAction. H"25 #include "TCPListener. H"26 #include "TCPSender. H"27 #include "IONotifier. H"22 //#include "SubFormatSubsystem.hxx" 23 #include "Subsystem.hxx" 24 #include "PeriodicAction.hxx" 25 #include "TCPListener.hxx" 26 #include "TCPSender.hxx" 27 #include "IONotifier.hxx" 28 28 #include <string> 29 29 //for signals/slots (Callbacks in C++, see http://libsigc.sourceforge.net/) -
trunk/MagicSoft/Control/SubsystemIO/Subsystem.plain.hxx
r1053 r1054 2 2 #define SUBSYSTEM 3 3 4 #include "PeriodicAction. H"5 #include "TCPListener. H"6 #include "PeriodicAction. H"7 #include "TCPSender. H"4 #include "PeriodicAction.hxx" 5 #include "TCPListener.hxx" 6 #include "PeriodicAction.hxx" 7 #include "TCPSender.hxx" 8 8 #define TIMESTAMP_LEN 12 9 9 //%02.2d:%02.2d:%02.2d:%03.3d -
trunk/MagicSoft/Control/SubsystemIO/TCPListener.ionotifier.cxx
r1053 r1054 23 23 #include <arpa/inet.h> 24 24 #include "socket_functions.h" 25 #include "IONotifier. H"26 #include "TCPListener. H"25 #include "IONotifier.hxx" 26 #include "TCPListener.hxx" 27 27 #include <string> 28 28 //for signals/slots (Callbacks in C++, see http://libsigc.sourceforge.net/ -
trunk/MagicSoft/Control/SubsystemIO/TCPListener.ionotifier.hxx
r1053 r1054 2 2 #define TCPLISTENER 3 3 4 #include "IONotifier. H"4 #include "IONotifier.hxx" 5 5 #include <string> 6 6 #include <sigc++/signal_system.h> -
trunk/MagicSoft/Control/SubsystemIO/TCPListener.select.cxx
r1053 r1054 23 23 #include <arpa/inet.h> 24 24 #include "socket_functions.h" 25 #include "TCPListener. H"25 #include "TCPListener.hxx" 26 26 #include <string> 27 27 //for signals/slots (Callbacks in C++, see http://libsigc.sourceforge.net/ -
trunk/MagicSoft/Control/SubsystemIO/TCPSender.cxx
r1053 r1054 18 18 ================================================================== 19 19 */ 20 #include "TCPSender. H"21 #include "PeriodicAction. H"20 #include "TCPSender.hxx" 21 #include "PeriodicAction.hxx" 22 22 #include "socket_functions.h" 23 23 #include <iostream> -
trunk/MagicSoft/Control/SubsystemIO/TCPSender.hxx
r1053 r1054 3 3 4 4 5 #include "PeriodicAction. H"5 #include "PeriodicAction.hxx" 6 6 #include "socket_functions.h" 7 7 #include <string> -
trunk/MagicSoft/Control/SubsystemIO/mainForPeriodicAction.cxx
r1053 r1054 1 1 #include <iostream> 2 #include "PeriodicAction. H"2 #include "PeriodicAction.hxx" 3 3 //the next class derives from sigc++ Object, so its methods are callable as slots 4 4 class Counter:public Object -
trunk/MagicSoft/Control/SubsystemIO/mainForPeriodicSignal.cxx
r1053 r1054 1 1 #include <iostream> 2 #include "PeriodicSignal. H"2 #include "PeriodicSignal.hxx" 3 3 #include <stdio.h> 4 4 //for signals -
trunk/MagicSoft/Control/SubsystemIO/mainForSubsystem.cxx
r1053 r1054 1 //g++ -g mainForSubsystem.C Subsystem.o socket_functions.o -o mainForSubsystem `sigc-config --libs --cflags` 2 #include "Subsystem.H" 1 #include "Subsystem.hxx" 3 2 // class MySubsystem: public Subsystem 4 3 // { -
trunk/MagicSoft/Control/SubsystemIO/mainForTCPListener.cxx
r1053 r1054 1 //g++ -g mainForServer.C -o mainForServer `sigc-config --libs --cflags` 2 #include "TCPListener.H" 1 #include "TCPListener.hxx" 3 2 #include <signal.h> 4 3 // int end; -
trunk/MagicSoft/Control/SubsystemIO/mainForTCPSender.cxx
r1053 r1054 1 #include "TCPSender. H"1 #include "TCPSender.hxx" 2 2 //for signals 3 3 #include <sigc++/signal_system.h>
Note:
See TracChangeset
for help on using the changeset viewer.