MCPcopy Create free account
hub / github.com/PlankCipher/kabmat / add_column

Method add_column

src/DataManager/Board.cpp:9–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7}
8
9void Board::add_column(string title) {
10 Column column(trim_spaces(title));
11 this->columns.push_back(column);
12}
13
14void Board::rename_column(size_t column_index, string new_title) {
15 this->columns[column_index].title = trim_spaces(new_title);

Callers 2

DataManagerMethod · 0.80
create_columnMethod · 0.80

Calls 1

trim_spacesFunction · 0.85

Tested by

no test coverage detected