~ubuntu-branches/ubuntu/wily/codelite/wily

« back to all changes in this revision

Viewing changes to CodeLite/istorage.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-07-29 19:42:47 UTC
  • mfrom: (0.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100729194247-hqgxamd2yl8f1l7x
* New upstream release.
* Bump Standards.
* Refresh patches.
* Add license information about files under ./Debugger/

Show diffs side-by-side

added added

removed removed

Lines of Context:
162
162
         * @param tags  [output]
163
163
         */
164
164
        virtual void GetGlobalFunctions(std::vector<TagEntryPtr> &tags) = 0;
 
165
        
 
166
        /**
 
167
         * @brief 
 
168
         * @param scope
 
169
         * @param tags
 
170
         */
 
171
        virtual void GetDereferenceOperator(const wxString &scope, std::vector<TagEntryPtr> &tags) = 0;
 
172
        
 
173
        /**
 
174
         * @brief 
 
175
         * @param scope
 
176
         * @param tags
 
177
         */
 
178
        virtual void GetSubscriptOperator(const wxString &scope, std::vector<TagEntryPtr> &tags) = 0;
165
179
 
166
180
        // -------------------------- Files Table -------------------------------------------
167
181