Created
October 11, 2017 03:08
-
-
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"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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