You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CommonData/databaseinterface.h
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -141,15 +141,16 @@ class DatabaseInterface
141
141
intcolumnGetDataSetId( int columnId);
142
142
voidcolumnDelete( int columnId, bool cleanUpRest = true); ///< Also makes sure indices stay as contiguous and correct as before. disable cleanUpRest to just clear from Columns
143
143
voidcolumnSetType( int columnId, columnType colType);
144
-
voidcolumnSetAutoSort( int columnId, bool sort);
145
144
voidcolumnSetInvalidated( int columnId, bool invalidated);
145
+
voidcolumnSetAutoSort( int columnId, bool sort);
146
+
voidcolumnSetHasLabels( int columnId, bool hasLabels);
146
147
voidcolumnSetDropLevels( int columnId, int dropLevels);
147
148
voidcolumnSetName( int columnId, const std::string & name);
148
149
voidcolumnSetTitle( int columnId, const std::string & title);
149
150
voidcolumnSetEmptyVals( int columnId, const std::string & emptyValsJson);
150
151
voidcolumnSetDescription( int columnId, const std::string & description);
151
152
voidcolumnSetComputeFilter( int columnId, const std::string & computeFilter);
152
-
voidcolumnGetBasicInfo( int columnId, std::string & name, std::string & title, std::string & description, columnType & colType, int & revision, Json::Value & emptyValuesJson, bool & autoSort, int & dropLevels);
153
+
voidcolumnGetBasicInfo( int columnId, std::string & name, std::string & title, std::string & description, columnType & colType, int & revision, Json::Value & emptyValuesJson, bool & autoSort, int & dropLevels, bool & hasLabels);
0 commit comments