Skip to content

Instantly share code, notes, and snippets.

@imduffy15
Created March 29, 2013 23:26
Show Gist options
  • Select an option

  • Save imduffy15/5274364 to your computer and use it in GitHub Desktop.

Select an option

Save imduffy15/5274364 to your computer and use it in GitHub Desktop.
Example of new
#include <string>
#include "Test.h"
int main() {
Test item = Test();
item.setMessage(new std::string("Hello World"));
item.putMessage();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment