10 lines
221 B
C++
10 lines
221 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace KFileNameCipher
|
|
{
|
|
bool IsEncodedName( const std::string & strFileName );
|
|
void EncodeFileName( std::string & strFileName );
|
|
void DecodeFileName( std::string & strFileName );
|
|
}; |