OpenRTM-aist 2.0.2
Loading...
Searching...
No Matches
DataTypeUtil.h
Go to the documentation of this file.
1// -*- C++ -*-
20#ifndef RTC_DATATYPEUTIL_H
21#define RTC_DATATYPEUTIL_H
22
23namespace CORBA_Util
24{
42 template <class T>
43 void copyData(T& data1, const T& data2)
44 {
45 data1 = data2;
46 }
47} // namespace CORBA_Util
48
49
50#endif // RTC_DATATYPEUTIL_H
Definition DataTypeUtil.h:24
void copyData(T &data1, const T &data2)
Definition DataTypeUtil.h:43