Changeset 68 in flair-dev for trunk/include/FlairCore
- Timestamp:
- Mar 6, 2018, 12:14:17 PM (7 years ago)
- Location:
- trunk/include/FlairCore
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/FlairCore/FrameworkManager.h
r45 r68 107 107 * 108 108 * \param log_path path to store logs 109 */ 110 void SetupLogger(std::string log_path); 109 * \param stackSize stack size in bytes for logging thread 110 */ 111 void SetupLogger(std::string log_path,uint32_t stackSize=1024*32); 111 112 112 113 /*! -
trunk/include/FlairCore/RangeFinderPlot.h
r13 r68 20 20 namespace flair { 21 21 namespace core { 22 class cvmatrix;22 class Matrix; 23 23 } 24 24 } … … 61 61 std::string x_name, float xmin, float xmax, 62 62 std::string y_name, float ymin, float ymax, 63 const core:: cvmatrix *datas, float start_angle,63 const core::Matrix *datas, float start_angle, 64 64 float end_angle, uint32_t nb_samples); 65 65 … … 87 87 void ExtraXmlEvent(void){}; 88 88 89 const core:: cvmatrix *datas;89 const core::Matrix *datas; 90 90 }; 91 91 -
trunk/include/FlairCore/Thread.h
r50 r68 46 46 * \param name name 47 47 * \param priority priority, should be >20 (<20 is reserved for internal use) 48 * \param stackSize stack size in bytes 48 49 */ 49 50 Thread(const Object *parent, std::string name, 50 uint8_t priority ); // priority>20, for real time only51 uint8_t priority,uint32_t stackSize=1024*128); 51 52 52 53 /*! -
trunk/include/FlairCore/io_data.h
r32 r68 116 116 117 117 /*! 118 * \brief Set data time 119 * 118 * \brief Set data time, also caluculates the delta time based on last call 119 * 120 * TIME_INFINITE represents an unitialized time 121 * 120 122 * \param time time 121 123 */ 122 124 void SetDataTime(Time time); 125 126 /*! 127 * \brief Set data time and delta time (thus delta time is not based on last call) 128 * 129 * TIME_INFINITE represents an unitialized time 130 * 131 * \param time time 132 * \param deltaTime delta time 133 */ 134 void SetDataTime(Time time,Time deltaTime); 123 135 124 136 /*! 125 137 * \brief Data time 126 138 * 139 * TIME_INFINITE represents an unitialized time. 140 * 127 141 * \return data time 128 142 */ 129 143 Time DataTime(void) const; 144 145 /*! 146 * \brief Data delta time 147 * 148 * TIME_INFINITE represents an unitialized time. 149 * 150 * \return data delta time 151 */ 152 Time DataDeltaTime(void) const; 153 154 /*! 155 * \brief Get data time and delta time 156 * 157 * TIME_INFINITE represents an unitialized time 158 * 159 * \param time time 160 * \param deltaTime delta time 161 */ 162 void GetDataTime(Time &time,Time &deltaTime) const; 130 163 131 164 /*!
Note:
See TracChangeset
for help on using the changeset viewer.