File: types.h

package info (click to toggle)
dc-qt 0.2.0.alpha-4
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,948 kB
  • ctags: 5,361
  • sloc: cpp: 28,936; makefile: 19
file content (22 lines) | stat: -rw-r--r-- 381 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef types_h__
#define types_h__
#include <boost/cstdint.hpp>
typedef boost::int64_t int64;
typedef int int32;
typedef short int16;
typedef char int8;

/// The different types of parameter types
enum eRpcParamType {
	
	eRpcParamTypeInt = 1,
	eRpcParamTypeByte,
	eRpcParamTypeShort,
	eRpcParamTypeBoolean,
	eRpcParamTypeLong,
	eRpcParamTypeString,
	eRpcParamTypeList
};

#endif