#include <iostream>
#include "uCalc.h"

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   cout << uCalc::DefaultCount() << endl;

   uc.IsDefault(true);
   cout << uCalc::DefaultCount() << endl;

   uCalc ucB;
   ucB.IsDefault(true);
   cout << uCalc::DefaultCount() << endl;

   uCalc ucC;
   ucC.IsDefault(true);
   cout << uCalc::DefaultCount() << endl;

   uCalc::DefaultClear();
   cout << uCalc::DefaultCount() << endl;
}