Click here to Skip to main content
15,886,067 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 183.8K   4.9K   122  
A set of source code and project browsers to compliment Visual Studio.
#ifndef FullQualifiedName_H
#define FullQualifiedName_H

#include <string>
#include <iostream>

extern const std::string GLOBAL_NAMESPACE;
;

class FullQualifiedName
{
private:
  std::string mScope;
  std::string mName;
  const static std::string empty;
  
public:
  FullQualifiedName(){}
  FullQualifiedName(const std::string &fqn);
  FullQualifiedName(const std::string& scope, const std::string& name);

  const std::string& getScope()  const;
  const std::string& getName() const { return mName; };

  std::string toString() const;

  operator std::string() const { return toString(); }

  bool operator ==(const FullQualifiedName& rhs) const
  { return getScope() == rhs.getScope() && getName() == rhs.getName(); }
  
  bool operator< (const FullQualifiedName& rhs) const
  { return toString() < rhs.toString(); }

  friend std::ostream& operator<<(std::ostream& os, const FullQualifiedName &fqn)
  { return os << fqn.toString(); }
  
private:
  void setScope(const std::string&);
	static std::string getScopeOf(const std::string &fqn);
	static std::string getNameOf(const std::string &fqn);
};

#endif

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