aboutsummaryrefslogtreecommitdiff
path: root/src/functionfilename.cpp
blob: 21a465580ccc4266d3e59b2aad25eebbb90725b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include "functionfilename.h"

FunctionFileName::FunctionFileName()
{
}

FunctionFileName::~FunctionFileName()
{
}

Bu::FString FunctionFileName::getName() const
{
	return "fileName";
}

Variable FunctionFileName::call( Variable &input, VarList /*lParams*/ )
{
	Bu::FString sFile;
	sFile = input.getString();

	Bu::FString::const_iterator i = sFile.begin();
	for(;;)
	{
		Bu::FString::const_iterator b = i.find('/');
		if( !b )
		{
			return Variable( Bu::FString( i ) );
		}
		i = b+1;
		if( !i )
		{
			return Variable( Bu::FString( i ) );
		}
	}
}