#include <glog/logging.h>
#include <iomanip>
#include <iostream>
#include <thread>
#include "./version.h"
#include <string>
#include <csignal>
Go to the source code of this file.
| #define DISALLOW_COPY_AND_ASSIGN |
( |
|
TypeName | ) |
|
Value:TypeName(const TypeName&); \
TypeName& operator=(const TypeName&);
Definition at line 64 of file global.h.
| #define FASSERT |
( |
|
condition | ) |
|
| #define FBREAKP std::raise(SIGINT) |
| #define MOVE_ASSIGN |
( |
|
TypeName | ) |
|
Value:TypeName(TypeName&&) = default; \
TypeName& operator=(TypeName&&) = default;
Definition at line 60 of file global.h.
| #define NOASSIGN_BUT_MOVE |
( |
|
TypeName | ) |
|
Value:TypeName(const TypeName&) = delete; \
TypeName& operator=(const TypeName&) = delete; \
TypeName(TypeName&&) = default; \
TypeName& operator=(TypeName&&) = default;
A macro to disallow the copy constructor and operator= functions This should be used in the private: declarations for a class see http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml.
Definition at line 54 of file global.h.
| #define TemplateExport extern template class |
| #define TemplateFuncExport extern template |
| #define VIRTUAL |
( |
|
type | ) |
= 0 |
| bool ends_with |
( |
std::string const & |
value, |
|
|
std::string const & |
ending |
|
) |
| |
|
inline |
| static bool FORPY_OPENCV_AVAILABLE |
( |
| ) |
|
|
static |