diff --git a/DbSigSlot/CMakeLists.txt b/DbSigSlot/CMakeLists.txt new file mode 100644 index 0000000..6c803cf --- /dev/null +++ b/DbSigSlot/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.7) +project(DbSigSlot) + +set(CMAKE_CXX_STANDARD 14) + +add_executable(DbSigSlot main.cpp object.cpp object.h) diff --git a/DbSigSlot/main.cpp b/DbSigSlot/main.cpp new file mode 100644 index 0000000..95f9add --- /dev/null +++ b/DbSigSlot/main.cpp @@ -0,0 +1,8 @@ +#include +using namespace std; + +int main(int argc, char *argv[]) +{ + + return 0; +} diff --git a/DbSigSlot/object.cpp b/DbSigSlot/object.cpp new file mode 100644 index 0000000..39fcb2f --- /dev/null +++ b/DbSigSlot/object.cpp @@ -0,0 +1,6 @@ +#include "object.h" + +Object::Object() +{ + +} diff --git a/DbSigSlot/object.h b/DbSigSlot/object.h new file mode 100644 index 0000000..9afcccc --- /dev/null +++ b/DbSigSlot/object.h @@ -0,0 +1,11 @@ +#ifndef OBJECT_H +#define OBJECT_H + + +class Object +{ +public: + Object(); +}; + +#endif // OBJECT_H \ No newline at end of file