Changeset 6985

Show
Ignore:
Timestamp:
04/02/08 12:07:12 (5 years ago)
Author:
bhilburn
Message:

Removing auto test stuff from includes.

Location:
ossiedev/trunk/system/ossie/include/ossie
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • ossiedev/trunk/system/ossie/include/ossie/DeviceManager_impl.h

    r6619 r6985  
    11/**************************************************************************** 
    22 
    3 Copyright 2004, Virginia Polytechnic Institute and State University 
     3Copyright 2008, Virginia Polytechnic Institute and State University 
    44 
    55This file is part of the OSSIE Core Framework. 
     
    7777            throw (CORBA::SystemException); 
    7878 
    79 #ifdef AUTOMATIC_TEST 
    80         void 
    81             displayRegisteredDevices (void); 
    82         void 
    83             displayRegisteredServices (void); 
    84 #endif                                            /*  */ 
    85  
    8679    private: 
    8780        DeviceManager_impl ();   // No default constructor 
     
    125118 
    126119#endif                                            /* __DEVICEMANAGER_IMPL__ */ 
     120 
  • ossiedev/trunk/system/ossie/include/ossie/Device_impl.h

    r6619 r6985  
    11/**************************************************************************** 
    22  
    3 Copyright 2004, Virginia Polytechnic Institute and State University 
     3Copyright 2008, Virginia Polytechnic Institute and State University 
    44  
    55This file is part of the OSSIE Core Framework. 
     
    7878    void configure (const CF::Properties & configProperties) throw (CF::PropertySet::PartialConfiguration, CF::PropertySet::InvalidConfiguration, CORBA::SystemException); 
    7979     
    80 #ifdef AUTOMATIC_TEST 
    81      
    82     void displayProperties (); 
    83     void displayProperties (CF::Properties & capacities); 
    84     void displayAttributes (); 
    85 #endif 
    86      
    8780private: 
    8881    Device_impl(); // Code that tries to use this constructor will not work 
     
    9184 
    9285 
    93 #endif                                            /*  */ 
     86#endif 
     87 
  • ossiedev/trunk/system/ossie/include/ossie/DomainManager_impl.h

    r6619 r6985  
    11/**************************************************************************** 
    22 
    3 Copyright 2004, Virginia Polytechnic Institute and State University 
     3Copyright 2008, Virginia Polytechnic Institute and State University 
    44 
    55This file is part of the OSSIE Core Framework. 
     
    145145            deviceManagers (void) 
    146146            throw (CORBA::SystemException); 
    147  
    148 #ifdef AUTOMATIC_TEST 
    149         void 
    150             displayAttributes (void); 
    151         void 
    152             displayDeviceManagers (void); 
    153         void 
    154             displayRegisteredDevices (void); 
    155         void 
    156             displayRegisteredServices (void); 
    157 #endif                                        //End AUTOMATIC_TEST 
    158147 
    159148#ifdef HAVE_OMNIEVENTS 
  • ossiedev/trunk/system/ossie/include/ossie/ExecutableDevice_impl.h

    r6619 r6985  
    11/**************************************************************************** 
    22 
    3 Copyright 2004, Virginia Polytechnic Institute and State University 
     3Copyright 2008, Virginia Polytechnic Institute and State University 
    44 
    55This file is part of the OSSIE Core Framework. 
     
    6868                CF::PropertySet::InvalidConfiguration, CORBA::SystemException); 
    6969 
    70 #ifdef AUTOMATIC_TEST 
    71             void 
    72                 displayProcessIdList (); 
    73 #endif 
    74  
    7570        private: 
    7671 
     
    7873            ExecutableDevice_impl(ExecutableDevice_impl&); 
    7974 
    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 
    8678#endif 
    8779 
    88             CF::ExecutableDevice::ProcessID_Type PID; 
    89     }; 
    90 #endif 
  • ossiedev/trunk/system/ossie/include/ossie/LoadableDevice_impl.h

    r6619 r6985  
    11/**************************************************************************** 
    22 
    3 Copyright 2004, Virginia Polytechnic Institute and State University 
     3Copyright 2008, Virginia Polytechnic Institute and State University 
    44 
    55This file is part of the OSSIE Core Framework. 
     
    8181            CF::PropertySet::InvalidConfiguration, CORBA::SystemException); 
    8282 
    83 #ifdef AUTOMATIC_TEST 
    84         void 
    85             displayLoadedFiles (); 
    86 #endif                                            /*  */ 
    8783    private: 
    8884        LoadableDevice_impl(); // No default constructor 
     
    9086    }; 
    9187 
    92 #endif                                            /*  */ 
     88#endif 
     89