Skip to content

Instantly share code, notes, and snippets.

@dj-amadeous
Created October 11, 2017 03:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dj-amadeous/ad458d0121186750b929b46aa514aff3 to your computer and use it in GitHub Desktop.
Save dj-amadeous/ad458d0121186750b929b46aa514aff3 to your computer and use it in GitHub Desktop.
what is the point on line 8 of "edu.uta.cse1325.turtle1"
#include "mainwin.h"
#include <gtkmm/application.h>
#include <gtkmm/window.h>
int main(int argc, char** argv)
{
// Create the application
auto app = Gtk::Application::create(argc, argv, "edu.uta.cse1325.turtle1");
// Instance a window
Mainwin win;
win.set_title("CSE1325 Paint");
// Return gtkmm's result code to the OS
return app->run(win);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment