core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/SymbianMacroStore.java
branchC3_BUILDER_WORK
changeset 1811 b1772bf1197b
parent 1789 f9d171c71f7e
equal deleted inserted replaced
1805:1d57e533b09e 1811:b1772bf1197b
   191     /**
   191     /**
   192      * Get a list of Macros for a given OS. Format will just be the name (e.g. "FOO").
   192      * Get a list of Macros for a given OS. Format will just be the name (e.g. "FOO").
   193      * @param osVersion - A version object. Only the major and minor rev are checked.
   193      * @param osVersion - A version object. Only the major and minor rev are checked.
   194      * @param branch - An OS branch (e.g. 'a' or 'b') or an empty string if none.
   194      * @param branch - An OS branch (e.g. 'a' or 'b') or an empty string if none.
   195      * @return A full list of define macro names (no values). Returns an empty list if the OS version is not in the store
   195      * @return A full list of define macro names (no values). Returns an empty list if the OS version is not in the store
       
   196      * @deprecated - use {@link ISymbianBuildContext#getVariantHRHDefines()}
   196      */
   197      */
   197     public List<String> getOSMacros(Version osVersion){
   198     public List<String> getOSMacros(Version osVersion){
   198     	List<String> osMacroList = new ArrayList<String>();
   199     	List<String> osMacroList = new ArrayList<String>();
   199     	
   200     	
   200     	String majStr = String.valueOf(osVersion.getMajor());
   201     	String majStr = String.valueOf(osVersion.getMajor());