You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
582 B
24 lines
582 B
// **************************************************************************
|
|
// Copyright (c) 1999 Microsoft Corporation.
|
|
//
|
|
// File: vehicle.mof
|
|
//
|
|
// Description:
|
|
// Defines more bicycle instances to demonstrate event reception.
|
|
// History:
|
|
//
|
|
// **************************************************************************
|
|
// switch to the new namespace.
|
|
#pragma namespace("\\root\\Vehicles")
|
|
|
|
|
|
// Make some more instances.
|
|
instance of Bicycle
|
|
{
|
|
Name = "Bozo-mobile";
|
|
Color = "all";
|
|
Material = "Steel";
|
|
Surface = 0; // road
|
|
Owner = "Bozo";
|
|
};
|
|
|