File: main.cpp

package info (click to toggle)
wcm 0.9.0%2Brepack-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,792 kB
  • sloc: cpp: 2,472; makefile: 7
file content (8 lines) | stat: -rw-r--r-- 223 bytes parent folder | download
1
2
3
4
5
6
7
8
#include <wcm.hpp>

int main(int argc, char **argv)
{
    auto app = Gtk::Application::create("org.gtk.wayfire-config-manager");
    std::unique_ptr<WCM> wcm = std::make_unique<WCM>(app);
    return app->run(argc, argv);
}