class MxxRu::Cpp::Toolsets::Vc9

Toolset implementation for Visual C++ 9.0

Setups following tags:

ver_hi

high version number. Value: 9.

ver_lo

low version number. Value: 0.

Public Class Methods

new( a_name = "vc" ) click to toggle source
Calls superclass method MxxRu::Cpp::Toolsets::Vc8Family::new
# File lib/mxx_ru/cpp/toolsets/vc9.rb, line 42
def initialize( a_name = "vc" )
  super( a_name )

  setup_tag( "ver_hi", "9" )
  setup_tag( "ver_lo", "0" )
end