Click here to Skip to main content
15,891,184 members
Articles / Desktop Programming / MFC

Be Sweet - a set of visual source code browsers

Rate me:
Please Sign up or sign in to vote.
4.85/5 (35 votes)
1 Jul 20038 min read 184.1K   4.9K   122  
A set of source code and project browsers to compliment Visual Studio.
#include "stdafx.h"

#include "FullQualifiedName.h"

const static const std::string GLOBAL_NAMESPACE = "global namespace";

using namespace std;
using string::npos;

const string FullQualifiedName::empty;

FullQualifiedName::FullQualifiedName(const string &fqn)
:  mName(getNameOf(fqn)) 
{
  setScope((getScopeOf(fqn)));
}

FullQualifiedName::FullQualifiedName(const string& scope, const string& name)
: mName(name) 
{
  setScope(scope);
}

string FullQualifiedName::getScopeOf(const string &fqn)
{
  size_t pos = fqn.rfind("::");
  return pos == npos ? "" : fqn.substr(0, pos);
}

string FullQualifiedName::getNameOf(const string &fqn)
{
	size_t pos = fqn.rfind("::");
  return pos == npos ? fqn : fqn.substr(pos+2, npos);
} 

void FullQualifiedName::setScope(const string &scope)
{
  mScope = scope == GLOBAL_NAMESPACE ? empty : scope;
  //mScope = scope.empty() ? GLOBAL_NAMESPACE : scope;
}

const string& FullQualifiedName::getScope() const
{
 return mScope == GLOBAL_NAMESPACE ? empty : mScope;
 //return mScope.empty() ? GLOBAL_NAMESPACE : mScope;
}

string FullQualifiedName::toString () const 
{ 
 return getScope().empty() ? getName() : getScope() + "::" + getName(); 
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Switzerland Switzerland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions