mirror of
https://github.com/OpenCMT/uLib.git
synced 2025-12-06 15:31:31 +01:00
18 lines
332 B
C++
18 lines
332 B
C++
#include <iostream>
|
|
#include "Test.h"
|
|
|
|
|
|
using namespace std;
|
|
|
|
void TestFilename::PrintName()
|
|
{
|
|
cout << "Filename is: ";
|
|
cout << ManageFilename::GetFileName(this->m_string) << "\n";
|
|
}
|
|
|
|
void TestFilename::PrintExtension()
|
|
{
|
|
cout << "Fileexten is: ";
|
|
cout << ManageFilename::GetFileExtension(this->m_string) << "\n";
|
|
}
|