-
Notifications
You must be signed in to change notification settings - Fork 10
coding style
Jungwook Shin edited this page Aug 12, 2019
·
1 revision
- A file
#ifndef FILENAME_H
#define FILENAME_H
/// \file
///
/// An introduction for this source file
*/
#include <C++> //start with C++ includes
#include <rti/base/rti_vec.hpp> //full path
namespace rti{
/// \class class_name
/// description
class {
}
}
#endif
-
All lower capital
-
Method: one-line per
CUDA_HOST
return_type
method_name(double a)
{
}
method_name(
double a,
double b)
{
}
inline virtual
size_t
method_name()
const
{
}
Tutorials
RTI components
TOPAS
etc