10 lines
170 B
C++
10 lines
170 B
C++
//
|
|
// Created by selim on 15.11.22.
|
|
//
|
|
|
|
#include "Separator.h"
|
|
|
|
gtkpp::Separator::Separator(GtkOrientation orientation) {
|
|
_widget = gtk_separator_new(orientation);
|
|
}
|