library.cpp #1

  • //
  • mainline/
  • guest/
  • ShadauxCat/
  • csbuild/
  • Mainline/
  • UnitTests/
  • OSX/
  • HelloLibraries/
  • src/
  • sharedLibrary/
  • library.cpp
  • View
  • Commits
  • Open Download .zip Download (192 B)
//
//  angle.cpp
//  
//
//  Created by Brandon on 11/5/14.
//
//

#include "library.h"
#include <stdio.h>


void SharedLibrary::DoWork()
{
	printf("... Doing work in a shared library!\n");
}
# Change User Description Committed
#1 12416 ShadauxCat Integration from //guest/brandon_m_bare/csbuild/brandon_m_bare/...
into //guest/ShadauxCat/csbuild/Mainline/...
//guest/brandon_m_bare/csbuild/brandon_m_bare/UnitTests/OSX/HelloLibraries/src/sharedLibrary/library.cpp
#1 11833 brandon_m_bare UnitTest:
-- Added the OSX unit test, HelloLibraries. NOTE: This unit test should work for other PC-based platforms, but it's specifically OSX to show off the difference loadable modules and shared libraries (which are technically the same thing, but Apple makes a clear distinction between the two).