Changeset 509
- Timestamp:
- 08/30/05 11:52:28 (8 years ago)
- Location:
- ossie/trunk/ossie/include/ossie
- Files:
-
- 21 modified
-
ApplicationFactory_impl.h (modified) (1 diff)
-
ComponentAssemblyParser.h (modified) (2 diffs)
-
ComponentInstantiation.h (modified) (1 diff)
-
ComponentPlacement.h (modified) (3 diffs)
-
DCDComponentPlacement.h (modified) (1 diff)
-
DMDParser.h (modified) (1 diff)
-
Device_impl.h (modified) (1 diff)
-
DomainManager_impl.h (modified) (1 diff)
-
FileManager_impl.h (modified) (1 diff)
-
File_impl.h (modified) (1 diff)
-
LifeCycle_impl.h (modified) (1 diff)
-
PRFParser.h (modified) (1 diff)
-
PortSupplier_impl.h (modified) (1 diff)
-
PropertySet_impl.h (modified) (1 diff)
-
SADComponentPlacement.h (modified) (1 diff)
-
SCDParser.h (modified) (1 diff)
-
SPDImplementation.h (modified) (1 diff)
-
SPDParser.h (modified) (2 diffs)
-
SPDUsesDevice.h (modified) (1 diff)
-
TestableObject_impl.h (modified) (1 diff)
-
orb_wrap.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ossie/trunk/ossie/include/ossie/ApplicationFactory_impl.h
r463 r509 23 23 #ifndef APPLICATIONFACTORY_H 24 24 #define APPLICATIONFACTORY_H 25 26 #ifndef __linux__ 27 #pragma warning( disable : 4275 ) // this could be something but i'm not sure 28 #pragma warning( disable : 4290 ) // there's an annoying VC7 warning that I wanted to make go away 29 #pragma warning( disable : 4251 ) // this is for dll interfaces 30 #endif 25 31 26 32 #include "ossiecf.h" -
ossie/trunk/ossie/include/ossie/ComponentAssemblyParser.h
r397 r509 28 28 #define COMPONENTASSEMBLYPARSER_H 29 29 30 #ifndef __linux__ 31 #pragma warning( disable : 4275 ) // this could be something but i'm not sure 32 #pragma warning( disable : 4290 ) // there's an annoying VC7 warning that I wanted to make go away 33 #pragma warning( disable : 4251 ) // this is for dll interfaces 34 #endif 35 30 36 #include "ossie/Connection.h" 31 37 #include <vector> … … 38 44 39 45 char* name; // the name of the root node 40 DOMDocument* doc;46 XERCES_CPP_NAMESPACE::DOMDocument* doc; 41 47 std::vector <Connection*> connections; 42 48 void parseIdAndName(DOMElement* _root); -
ossie/trunk/ossie/include/ossie/ComponentInstantiation.h
r397 r509 27 27 #ifndef COMPONENTINSTANTIATION_H 28 28 #define COMPONENTINSTANTIATION_H 29 30 #ifndef __linux__ 31 #pragma warning( disable : 4275 ) // this could be something but i'm not sure 32 #pragma warning( disable : 4290 ) // there's an annoying VC7 warning that I wanted to make go away 33 #pragma warning( disable : 4251 ) // this is for dll interfaces 34 #endif 29 35 30 36 #include "InstantiationProperty.h" -
ossie/trunk/ossie/include/ossie/ComponentPlacement.h
r397 r509 28 28 #define COMPONENTPLACEMENT_H 29 29 30 #ifndef __linux__ 31 #pragma warning( disable : 4275 ) // this could be something but i'm not sure 32 #pragma warning( disable : 4290 ) // there's an annoying VC7 warning that I wanted to make go away 33 #pragma warning( disable : 4251 ) // this is for dll interfaces 34 #endif 35 30 36 #include "ComponentInstantiation.h" 31 37 … … 33 39 { 34 40 protected: 35 DOMDocument* doc;41 XERCES_CPP_NAMESPACE::DOMDocument* doc; 36 42 DOMElement* root; 37 43 char* SPDFile; … … 48 54 public: 49 55 ComponentPlacement(); 50 ComponentPlacement(DOMElement * _element, DOMDocument * _doc);56 ComponentPlacement(DOMElement * _element, XERCES_CPP_NAMESPACE::DOMDocument * _doc); 51 57 ComponentPlacement(const ComponentPlacement & _CP); 52 58 virtual ~ComponentPlacement(); -
ossie/trunk/ossie/include/ossie/DCDComponentPlacement.h
r397 r509 54 54 public: 55 55 DCDComponentPlacement(); 56 DCDComponentPlacement(DOMElement* _elem, DOMDocument* _doc);56 DCDComponentPlacement(DOMElement* _elem, XERCES_CPP_NAMESPACE::DOMDocument* _doc); 57 57 DCDComponentPlacement(const DCDComponentPlacement & _dcdCP); 58 58 ~DCDComponentPlacement(); -
ossie/trunk/ossie/include/ossie/DMDParser.h
r397 r509 40 40 { 41 41 private: 42 DOMDocument* doc;42 XERCES_CPP_NAMESPACE::DOMDocument* doc; 43 43 XercesDOMParser* parser; 44 44 char* DMDFile; -
ossie/trunk/ossie/include/ossie/Device_impl.h
r397 r509 23 23 #ifndef DEVICE_IMPL_H 24 24 #define DEVICE_IMPL_H 25 26 #ifndef __linux__ 27 #pragma warning( disable : 4275 ) // this could be something but i'm not sure 28 #pragma warning( disable : 4290 ) // there's an annoying VC7 warning that I wanted to make go away 29 #pragma warning( disable : 4251 ) // this is for dll interfaces 30 #endif 25 31 26 32 #include "Resource_impl.h" -
ossie/trunk/ossie/include/ossie/DomainManager_impl.h
r461 r509 24 24 #define __DOMAINMANAGER_IMPL__ 25 25 26 27 #ifndef __linux__ 28 #pragma warning( disable : 4290 ) // there's an annoying VC7 warning that I wanted to make go away 29 #endif 26 30 27 31 #include "CosEventComm.hh" -
ossie/trunk/ossie/include/ossie/FileManager_impl.h
r397 r509 25 25 26 26 #include "ossiecf.h" 27 28 #ifndef __linux__ 29 #pragma warning( disable : 4275 ) // this could be something but i'm not sure 30 #pragma warning( disable : 4290 ) // there's an annoying VC7 warning that I wanted to make go away 31 #pragma warning( disable : 4251 ) // this is for dll interfaces 32 #endif 27 33 28 34 #include "FileSystem_impl.h" -
ossie/trunk/ossie/include/ossie/File_impl.h
r501 r509 30 30 31 31 #include <omniORB4/CORBA.h> 32 33 #ifndef __linux__ 34 #pragma warning( disable : 4275 ) // there's an annoying VC7 warning that I wanted to make go away 35 #pragma warning( disable : 4290 ) 36 #endif 32 37 33 38 #include "cf.h" -
ossie/trunk/ossie/include/ossie/LifeCycle_impl.h
r397 r509 26 26 #include "ossiecf.h" 27 27 28 #ifndef __linux__ 29 #pragma warning( disable : 4275 ) // this could be something but i'm not sure 30 #pragma warning( disable : 4290 ) // there's an annoying VC7 warning that I wanted to make go away 31 #pragma warning( disable : 4251 ) // this is for dll interfaces 32 #endif 33 28 34 #include "cf.h" 29 35 -
ossie/trunk/ossie/include/ossie/PRFParser.h
r397 r509 36 36 private: 37 37 char *propertyFile; 38 DOMDocument *doc;38 XERCES_CPP_NAMESPACE::DOMDocument *doc; 39 39 XercesDOMParser *parser; 40 40 PRFProperty configProperties; -
ossie/trunk/ossie/include/ossie/PortSupplier_impl.h
r397 r509 24 24 #define PORTSUPPLIER_IMPL_H 25 25 26 #ifndef __linux__ 27 #pragma warning( disable : 4275 ) // this could be something but i'm not sure 28 #pragma warning( disable : 4290 ) // there's an annoying VC7 warning that I wanted to make go away 29 #pragma warning( disable : 4251 ) // this is for dll interfaces 30 #endif 31 26 32 #include "ossiecf.h" 27 33 -
ossie/trunk/ossie/include/ossie/PropertySet_impl.h
r397 r509 28 28 #include "cf.h" 29 29 30 #ifndef __linux__ 31 #pragma warning( disable : 4275 ) // this could be something but i'm not sure 32 #pragma warning( disable : 4290 ) // there's an annoying VC7 warning that I wanted to make go away 33 #pragma warning( disable : 4251 ) // this is for dll interfaces 34 #endif 30 35 31 36 #include <vector> -
ossie/trunk/ossie/include/ossie/SADComponentPlacement.h
r397 r509 47 47 public: 48 48 SADComponentPlacement(); 49 SADComponentPlacement(DOMElement* _elem, DOMDocument* _doc);49 SADComponentPlacement(DOMElement* _elem, XERCES_CPP_NAMESPACE::DOMDocument* _doc); 50 50 ~SADComponentPlacement(); 51 51 -
ossie/trunk/ossie/include/ossie/SCDParser.h
r397 r509 40 40 { 41 41 private: 42 DOMDocument* doc;42 XERCES_CPP_NAMESPACE::DOMDocument* doc; 43 43 XercesDOMParser* parser; 44 44 char* componentType; -
ossie/trunk/ossie/include/ossie/SPDImplementation.h
r397 r509 27 27 #ifndef SPDIMPLEMENTATION_H 28 28 #define SPDIMPLEMENTATION_H 29 30 #ifndef __linux__ 31 #pragma warning( disable : 4275 ) // this could be something but i'm not sure 32 #pragma warning( disable : 4290 ) // there's an annoying VC7 warning that I wanted to make go away 33 #pragma warning( disable : 4251 ) // this is for dll interfaces 34 #endif 29 35 30 36 #include "SPDUsesDevice.h" -
ossie/trunk/ossie/include/ossie/SPDParser.h
r397 r509 28 28 #define SPDPARSER_H 29 29 30 #ifndef __linux__ 31 #pragma warning( disable : 4275 ) // this could be something but i'm not sure 32 #pragma warning( disable : 4290 ) // there's an annoying VC7 warning that I wanted to make go away 33 #pragma warning( disable : 4251 ) // this is for dll interfaces 34 #endif 35 30 36 #include "SPDAuthor.h" 31 37 #include "SPDUsesDevice.h" … … 40 46 { 41 47 protected: 42 DOMDocument* doc;48 XERCES_CPP_NAMESPACE::DOMDocument* doc; 43 49 44 50 XercesDOMParser* parser; -
ossie/trunk/ossie/include/ossie/SPDUsesDevice.h
r397 r509 28 28 #define SPDUSESDEVICE_H 29 29 30 #ifndef __linux__ 31 #pragma warning( disable : 4275 ) // this could be something but i'm not sure 32 #pragma warning( disable : 4290 ) // there's an annoying VC7 warning that I wanted to make go away 33 #pragma warning( disable : 4251 ) // this is for dll interfaces 34 #endif 35 30 36 #include "ossieparser.h" // ossieparser 31 37 -
ossie/trunk/ossie/include/ossie/TestableObject_impl.h
r397 r509 24 24 #define TESTABLEOBJECT_IMPL_H 25 25 26 #ifndef __linux__ 27 #pragma warning( disable : 4275 ) // this could be something but i'm not sure 28 #pragma warning( disable : 4290 ) // there's an annoying VC7 warning that I wanted to make go away 29 #pragma warning( disable : 4251 ) // this is for dll interfaces 30 #endif 31 26 32 #include "ossiecf.h" 27 33 -
ossie/trunk/ossie/include/ossie/orb_wrap.h
r397 r509 31 31 32 32 #include "omniORB4/CORBA.h" 33 34 #include <iostream> 33 35 //#include "orbsvcs/CosNamingC.h" 34 36 //#include "PortableServer/PortableServer.h" 37 38 #ifndef __linux__ 39 #pragma warning( disable : 4275 ) // this could be something but i'm not sure 40 #pragma warning( disable : 4290 ) // there's an annoying VC7 warning that I wanted to make go away 41 #pragma warning( disable : 4251 ) // this is for dll interfaces 42 #endif 35 43 36 44 using namespace std;