Uploaded image for project: 'Axis-C++'
  1. Axis-C++
  2. AXISCPP-853

Generated getters and setters wrong for any types

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • current (nightly)
    • None
    • WSDD Processing
    • None
    • All

    Description

      ExtencibilityQuery test fails to compile because the getter/ setter name is incorrect.

      In ExtencibilityType.hpp, method declaration is as follows:
      AnyType* getany1();
      void setany1(AnyType* InValue);

      But in ExtencibilityType.cpp, the identifier is wrong.

      AnyType* ExtensibilityType::getany() <------------- wrong identifier (should be getany1())
      {
      return any1 ;
      }

      void ExtensibilityType::setany(AnyType* InValue) <----------------- wrong identifier (should be setany1)
      {
      any1 = InValue ;
      }

      Attachments

        Activity

          People

            dchandradasa Marcus Dushshantha Chandradasa
            dchandradasa Marcus Dushshantha Chandradasa
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: