Skip to content

Instantly share code, notes, and snippets.

@ElemarJR
Created December 15, 2012 20:33
Show Gist options
  • Select an option

  • Save ElemarJR/4298944 to your computer and use it in GitHub Desktop.

Select an option

Save ElemarJR/4298944 to your computer and use it in GitHub Desktop.
#include "pch.h"
#include "Calculator.h"
using namespace WinRTComponentCpp;
Calculator::Calculator()
{
}
int Calculator::Add(int a, int b)
{
return a + b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment