// header file - revised
namespace mxf
{
namespace date
{
std::string formatDate(std::string formatStr);
}
}
// mxf_date.cpp new file - added to project
#include <string>
#include "mxf_date.h"
std::string mxf::date::formatDate(std::string formatStr)
{
return "abc";
}
|