Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MacroDirective (0.7 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/MacroDirective.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model.cpp;
    
    import javax.annotation.Nullable;
    
    /**
     * Represent a macro directive.
     *
     * @since 4.10
     */
    public interface MacroDirective {
        /**
         * Returns the name of the macro.
         */
        String getName();
    
        /**
         * Returns the value of the macro, if any.
         */
        @Nullable
        String getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 962 bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CompilationDetails.java

         */
        Set<File> getHeaderDirs();
    
        /**
         * Returns the macro define directives for this binary.
         */
        DomainObjectSet<? extends MacroDirective> getMacroDefines();
    
        /**
         * Returns the macro undefine directives for this binary.
         */
        Set<String> getMacroUndefines();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top