moved pvType.h from misc to pv.

Made changes to make it clear that is defining the pvData primitive types for pvData.
This commit is contained in:
Marty Kraimer
2011-01-28 08:22:46 -05:00
parent 62e0495c3d
commit ad9633c8f6
10 changed files with 312 additions and 326 deletions
-28
View File
@@ -1,28 +0,0 @@
/* pvType.h */
/**
* Copyright - See the COPYRIGHT that is included with this distribution.
* EPICS pvDataCPP is distributed subject to a Software License Agreement found
* in file LICENSE that is included with this distribution.
*/
#include <string>
#ifndef PVTYPE_H
#define PVTYPE_H
namespace epics { namespace pvData {
typedef signed char int8;
typedef short int16;
typedef int int32;
typedef long long int64;
typedef unsigned int uint32;
typedef unsigned long long uint64;
typedef std::string String;
typedef std::string * StringBuilder;
typedef String* StringArray;
}}
#endif /* PVTYPE_H */