Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tree view again #226

Merged
merged 12 commits into from
Nov 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions include/PlotJuggler/alphanum.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ namespace doj

@return negative if l<r, 0 if l==r, positive if l>r.
*/
template <>
template <> inline
int alphanum_comp<std::string>(const std::string& l, const std::string& r)
{
#ifdef DOJDEBUG
Expand All @@ -220,7 +220,7 @@ namespace doj

@return negative if l<r, 0 if l==r, positive if l>r.
*/
int alphanum_comp(char* l, char* r)
inline int alphanum_comp(char* l, char* r)
{
assert(l);
assert(r);
Expand All @@ -230,7 +230,7 @@ namespace doj
return alphanum_impl(l, r);
}

int alphanum_comp(const char* l, const char* r)
inline int alphanum_comp(const char* l, const char* r)
{
assert(l);
assert(r);
Expand All @@ -240,7 +240,7 @@ namespace doj
return alphanum_impl(l, r);
}

int alphanum_comp(char* l, const char* r)
inline int alphanum_comp(char* l, const char* r)
{
assert(l);
assert(r);
Expand All @@ -250,7 +250,7 @@ namespace doj
return alphanum_impl(l, r);
}

int alphanum_comp(const char* l, char* r)
inline int alphanum_comp(const char* l, char* r)
{
assert(l);
assert(r);
Expand All @@ -260,7 +260,7 @@ namespace doj
return alphanum_impl(l, r);
}

int alphanum_comp(const std::string& l, char* r)
inline int alphanum_comp(const std::string& l, char* r)
{
assert(r);
#ifdef DOJDEBUG
Expand All @@ -269,7 +269,7 @@ namespace doj
return alphanum_impl(l.c_str(), r);
}

int alphanum_comp(char* l, const std::string& r)
inline int alphanum_comp(char* l, const std::string& r)
{
assert(l);
#ifdef DOJDEBUG
Expand All @@ -278,7 +278,7 @@ namespace doj
return alphanum_impl(l, r.c_str());
}

int alphanum_comp(const std::string& l, const char* r)
inline int alphanum_comp(const std::string& l, const char* r)
{
assert(r);
#ifdef DOJDEBUG
Expand All @@ -287,7 +287,7 @@ namespace doj
return alphanum_impl(l.c_str(), r);
}

int alphanum_comp(const char* l, const std::string& r)
inline int alphanum_comp(const char* l, const std::string& r)
{
assert(l);
#ifdef DOJDEBUG
Expand Down
2 changes: 2 additions & 0 deletions plotter_gui/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ SET( PLOTTER_SRC
customtracker.cpp
curvecolorpick.cpp
curvelist_panel.cpp
curvelist_view.cpp
curvetree_view.cpp
main.cpp
mainwindow.cpp
menubar.cpp
Expand Down
Loading