Changeset 6985
- Timestamp:
- 04/02/08 12:07:12 (5 years ago)
- Location:
- ossiedev/trunk/system/ossie/include/ossie
- Files:
-
- 5 modified
-
DeviceManager_impl.h (modified) (3 diffs)
-
Device_impl.h (modified) (3 diffs)
-
DomainManager_impl.h (modified) (2 diffs)
-
ExecutableDevice_impl.h (modified) (3 diffs)
-
LoadableDevice_impl.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ossiedev/trunk/system/ossie/include/ossie/DeviceManager_impl.h
r6619 r6985 1 1 /**************************************************************************** 2 2 3 Copyright 200 4, Virginia Polytechnic Institute and State University3 Copyright 2008, Virginia Polytechnic Institute and State University 4 4 5 5 This file is part of the OSSIE Core Framework. … … 77 77 throw (CORBA::SystemException); 78 78 79 #ifdef AUTOMATIC_TEST80 void81 displayRegisteredDevices (void);82 void83 displayRegisteredServices (void);84 #endif /* */85 86 79 private: 87 80 DeviceManager_impl (); // No default constructor … … 125 118 126 119 #endif /* __DEVICEMANAGER_IMPL__ */ 120 -
ossiedev/trunk/system/ossie/include/ossie/Device_impl.h
r6619 r6985 1 1 /**************************************************************************** 2 2 3 Copyright 200 4, Virginia Polytechnic Institute and State University3 Copyright 2008, Virginia Polytechnic Institute and State University 4 4 5 5 This file is part of the OSSIE Core Framework. … … 78 78 void configure (const CF::Properties & configProperties) throw (CF::PropertySet::PartialConfiguration, CF::PropertySet::InvalidConfiguration, CORBA::SystemException); 79 79 80 #ifdef AUTOMATIC_TEST81 82 void displayProperties ();83 void displayProperties (CF::Properties & capacities);84 void displayAttributes ();85 #endif86 87 80 private: 88 81 Device_impl(); // Code that tries to use this constructor will not work … … 91 84 92 85 93 #endif /* */ 86 #endif 87 -
ossiedev/trunk/system/ossie/include/ossie/DomainManager_impl.h
r6619 r6985 1 1 /**************************************************************************** 2 2 3 Copyright 200 4, Virginia Polytechnic Institute and State University3 Copyright 2008, Virginia Polytechnic Institute and State University 4 4 5 5 This file is part of the OSSIE Core Framework. … … 145 145 deviceManagers (void) 146 146 throw (CORBA::SystemException); 147 148 #ifdef AUTOMATIC_TEST149 void150 displayAttributes (void);151 void152 displayDeviceManagers (void);153 void154 displayRegisteredDevices (void);155 void156 displayRegisteredServices (void);157 #endif //End AUTOMATIC_TEST158 147 159 148 #ifdef HAVE_OMNIEVENTS -
ossiedev/trunk/system/ossie/include/ossie/ExecutableDevice_impl.h
r6619 r6985 1 1 /**************************************************************************** 2 2 3 Copyright 200 4, Virginia Polytechnic Institute and State University3 Copyright 2008, Virginia Polytechnic Institute and State University 4 4 5 5 This file is part of the OSSIE Core Framework. … … 68 68 CF::PropertySet::InvalidConfiguration, CORBA::SystemException); 69 69 70 #ifdef AUTOMATIC_TEST71 void72 displayProcessIdList ();73 #endif74 75 70 private: 76 71 … … 78 73 ExecutableDevice_impl(ExecutableDevice_impl&); 79 74 80 #ifdef MS_dotNET 81 bool executeProcess (char **, unsigned long, unsigned long, Handler &, int); 82 void terminateProcess (Handler); 83 CF::ExecutableDevice::ProcessID_Type handlerToPid (Handler handler); 84 bool extractHandler (CF::ExecutableDevice::ProcessID_Type processId, Handler & handler); 85 std::vector < ProcessIdNode > processIdList; 75 CF::ExecutableDevice::ProcessID_Type PID; 76 }; 77 86 78 #endif 87 79 88 CF::ExecutableDevice::ProcessID_Type PID;89 };90 #endif -
ossiedev/trunk/system/ossie/include/ossie/LoadableDevice_impl.h
r6619 r6985 1 1 /**************************************************************************** 2 2 3 Copyright 200 4, Virginia Polytechnic Institute and State University3 Copyright 2008, Virginia Polytechnic Institute and State University 4 4 5 5 This file is part of the OSSIE Core Framework. … … 81 81 CF::PropertySet::InvalidConfiguration, CORBA::SystemException); 82 82 83 #ifdef AUTOMATIC_TEST84 void85 displayLoadedFiles ();86 #endif /* */87 83 private: 88 84 LoadableDevice_impl(); // No default constructor … … 90 86 }; 91 87 92 #endif /* */ 88 #endif 89